home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / infodata / callbook.tar / callbook_1.3 / callbook.h < prev    next >
C/C++ Source or Header  |  1991-03-31  |  1KB  |  59 lines

  1. /*
  2.  * Some standard paths and constants used in the server. Make sure directory
  3.  * names end with a '/'! All customizations should be in this file.
  4.  */
  5.  
  6. #ifdef INSTALL
  7.  
  8. /*
  9.  * Directory where the database hash tables can be found.
  10.  */
  11. #define DB_DIR "/gnu/ham_stuff/"
  12.  
  13. /*
  14.  * The name of the file text version of the database.
  15.  */
  16. #define DB_TEXT "/gnu/ham_stuff/callsign.sort"
  17.  
  18. /*
  19.  * Directory where the help files are.
  20.  */
  21. #define HELP_DIR "/gnu/ham_stuff/help/"
  22.  
  23. /*
  24.  * Name of the primary help file.
  25.  */
  26. #define HELP_FILE "/gnu/ham_stuff/help/help"
  27.  
  28. /*
  29.  * Prefix for all the secondary help files.
  30.  */
  31. #define HELP_PREFIX "/gnu/ham_stuff/help/help."
  32.  
  33. /*
  34.  * Name of the info file.
  35.  */
  36. #define INFO_FILE "/gnu/ham_stuff/help/info_file"
  37.  
  38. #else    /* we're not installing */
  39.  
  40. #define DB_DIR "/u0/staff/bowen/callbook/database/"
  41. #define DB_TEXT "/u0/staff/bowen/callbook/database/callsign.sort"
  42.  
  43. #define HELP_DIR "/u0/staff/bowen/callbook/help/"
  44. #define HELP_FILE "/u0/staff/bowen/callbook/help/help"
  45. #define HELP_PREFIX "/u0/staff/bowen/callbook/help/help."
  46.  
  47. #define INFO_FILE "/u0/staff/bowen/callbook/help/info_file"
  48.  
  49. #endif    /* INSTALL */
  50.  
  51. /*
  52.  * Year the database was created. This is used to find the correct year
  53.  * in the different fields of each record and must be changed each time
  54.  * a new database is installed. If anyone has a better way *PLEASE* let
  55.  * me know.
  56.  */
  57.  
  58. #define DB_YEAR 1990
  59.